home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / programmmanager / qbox-v1.14e / install < prev    next >
Text File  |  1996-04-07  |  2KB  |  90 lines

  1. ; QBox installation script
  2. ; copyright 1995 T.L.Bullock
  3.  
  4. ; Report 0% complete
  5. (complete 0)       
  6.  
  7. ; Request QBox prog destination
  8. (set qb-dest        
  9.   (askdir
  10.     (prompt "Where do you want the QBox program installed?")
  11.     (help @askdir-help)
  12.     (default @default-dest)
  13.   )
  14. )
  15.  
  16. ; Assign selection to default
  17. (set @default-dest qb-dest)
  18.  
  19. ; Report 20% complete
  20. (complete 20)
  21.  
  22. ; Copy QBox and QBox.info
  23. (
  24. (working "Installing QBox program...")
  25.   (copyfiles
  26.     (prompt "")
  27.     (help @copyfiles-help)
  28.     (source "QBox-v1.14e")
  29.     (dest @default-dest)
  30.     (infos)
  31.   )
  32. )
  33.  
  34. ; Report 40% complete
  35. (complete 40)
  36.  
  37. ; Copy QBox.guide to Locale:help/english/QBox.guide
  38. (copyfiles
  39.   (prompt "Installing QBox.guide to Locale:help/english/")
  40.   (help @copyfiles-help)
  41.   (source "QBox.guide")
  42.   (dest "Locale:help/english/")
  43.   (confirm)
  44. )
  45.  
  46. ; Report 60% complete
  47. (complete 60)
  48.  
  49. ; Copy libs/explode.library to Libs:
  50. (working "Installing libraries required")
  51. (copylib
  52.   (prompt "Installing Explode.library to Libs:")
  53.   (help @copylib-help)
  54.   (source "libs/Explode.library")
  55.   (dest "Libs:")
  56.   (confirm)
  57. )
  58.  
  59. ; Report 80% complete
  60. (complete 80)
  61.  
  62. ; Copy fonts/ to Fonts:
  63. (copyfiles
  64.   (prompt "Installing fonts required to Fonts:")
  65.   (help @copyfiles-help)
  66.   (source "fonts")
  67.   (dest "Fonts:")
  68.   (fonts)
  69.   (all)
  70.   (confirm)
  71. )
  72.  
  73. ;Report 90% complete
  74. (complete 90)
  75.  
  76. ; Copy S/ to S:
  77. (copyfiles
  78.   (prompt "Installing example scripts to S:")
  79.   (help @copyfiles-help)
  80.   (source "s")
  81.   (dest "S:")
  82.   (all)
  83.   (confirm)
  84. )
  85.  
  86. ; Report 100% complete
  87. (complete 100)
  88.  
  89. ; T-t-t-thats all folks!!!
  90. (exit)